home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / eselect / libs / multilib.bash < prev    next >
Text File  |  2006-04-12  |  1KB  |  41 lines

  1. #!/bin/bash
  2.  
  3. # Copyright (c) 2005 Gentoo Foundation.
  4. # $Id: multilib.bash.in 248 2005-12-19 00:09:40Z kugelfang $
  5. # This file is part of the 'eselect' tools framework.
  6. #
  7. # eselect is free software; you can redistribute it and/or modify it under the
  8. # terms of the GNU General Public License as published by the Free Software
  9. # Foundation; either version 2 of the License, or (at your option) any later
  10. # version.
  11. #
  12. # eselect is distributed in the hope that it will be useful, but WITHOUT ANY
  13. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  14. # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License along with
  17. # eselect; if not, write to the Free Software Foundation, Inc., 59 Temple
  18. # Place, Suite 330, Boston, MA  02111-1307  USA
  19.  
  20. ES_VALID_MULTILIB_DIRS="lib lib32 lib64"
  21.  
  22. # list_libdirs PUBLIC
  23. # Returns a space separated list of libdirs available on this machine
  24. list_libdirs() {
  25.     local dir libdirs
  26.     libdirs=""
  27.     for dir in ${ES_VALID_MULTILIB_DIRS} ; do
  28.         if grep -q "^/${dir}\(\|/\)$" ${ROOT}/etc/ld.so.conf &> /dev/null ; then
  29.             libdirs=( ${libdirs[@]} ${dir} )
  30.         fi
  31.     done
  32.     if [[ -z ${libdirs[@]} ]] ; then
  33.         # Broken or non-existing ld.so.conf
  34.         libdirs=( ${ROOT}/lib* )
  35.     libdirs=( ${libdirs[@]/\/lib/lib} )
  36.     fi
  37.     echo "${libdirs[@]}"
  38. }
  39.  
  40. # vim: set sw=4 et sts=4 tw=80 :
  41.